home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / cprog.EXE / CC_1.ZIP / REWIND.C < prev    next >
Text File  |  1988-02-01  |  384b  |  11 lines

  1. /*
  2. ** rewind a stream file
  3. */
  4. #define FILE int
  5. extern fseek2();
  6.  
  7. rewind(stream) FILE *stream; {
  8.   fseek2(stream, 0, 0);
  9.   fseek2(stream, 0, 3);
  10.   }
  11.